home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / lisp / stk-3.002 / stk-3 / STk-3.1 / Contrib / STk-wtour / lessons / options.stk < prev    next >
Encoding:
Text File  |  1994-08-24  |  175 b   |  10 lines

  1. ;; Widget options
  2.  
  3. (option 'add "*background" "red")
  4. (option 'add "*Button.foreground" "white")
  5.  
  6. (button '.a :text "Press Me!")
  7. (button '.b :text "And Me Too!")
  8. (pack .a .b)
  9.  
  10.